type net/http.http2Flags

25 uses

	net/http (current package)
		h2_bundle.go#L1469: type http2Flags uint8
		h2_bundle.go#L1472: func (f http2Flags) Has(v http2Flags) bool {
		h2_bundle.go#L1479: 	http2FlagDataEndStream http2Flags = 0x1
		h2_bundle.go#L1480: 	http2FlagDataPadded    http2Flags = 0x8
		h2_bundle.go#L1483: 	http2FlagHeadersEndStream  http2Flags = 0x1
		h2_bundle.go#L1484: 	http2FlagHeadersEndHeaders http2Flags = 0x4
		h2_bundle.go#L1485: 	http2FlagHeadersPadded     http2Flags = 0x8
		h2_bundle.go#L1486: 	http2FlagHeadersPriority   http2Flags = 0x20
		h2_bundle.go#L1489: 	http2FlagSettingsAck http2Flags = 0x1
		h2_bundle.go#L1492: 	http2FlagPingAck http2Flags = 0x1
		h2_bundle.go#L1495: 	http2FlagContinuationEndHeaders http2Flags = 0x4
		h2_bundle.go#L1497: 	http2FlagPushPromiseEndHeaders http2Flags = 0x4
		h2_bundle.go#L1498: 	http2FlagPushPromisePadded     http2Flags = 0x8
		h2_bundle.go#L1501: var http2flagName = map[http2FrameType]map[http2Flags]string{
		h2_bundle.go#L1565: 	Flags http2Flags
		h2_bundle.go#L1602: 			name := http2flagName[h.Type][http2Flags(1<<i)]
		h2_bundle.go#L1649: 		Flags:    http2Flags(buf[4]),
		h2_bundle.go#L1747: func (f *http2Framer) startWrite(ftype http2FrameType, flags http2Flags, streamID uint32) {
		h2_bundle.go#L2101: 	var flags http2Flags
		h2_bundle.go#L2283: 	var flags http2Flags
		h2_bundle.go#L2512: 	var flags http2Flags
		h2_bundle.go#L2679: 	var flags http2Flags
		h2_bundle.go#L2778: 	var flags http2Flags
		h2_bundle.go#L2800: func (f *http2Framer) WriteRawFrame(t http2FrameType, flags http2Flags, streamID uint32, payload []byte) error {